Initializes a new instance of the 
ImGearARTPolyline class object.
Syntax
            
            
            
            
            'Declaration
 
Public Function New( _
   ByVal () As ImGearPoint, _
   ByVal  As IImGearRGBQuad, _
   ByVal  As ImGearARTPenStyle, _
   ByVal  As Integer, _
   ByVal  As Integer, _
   ByVal  As Boolean _
)
             
        
            
            'Usage
 
Dim points() As ImGearPoint
Dim color As IImGearRGBQuad
Dim style As ImGearARTPenStyle
Dim width As Integer
Dim opacity As Integer
Dim isClosed As Boolean
 
Dim instance As New ImGearARTPolyline(points, color, style, width, opacity, isClosed)
             
        
            
        
            
        
            
        
             
        
            Parameters
- points
- The mark's points.
- color
- Color of the mark.
- style
- The line style.
- width
- The line width.
- opacity
- Opacity of the mark.
- isClosed
- Specifies whether the line is closed or not.
 
            
            
            
            
            
            
            
            
            
            
            
            See Also